home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-18 | 2.0 KB | 61 lines | [TEXT/MPS ] |
- ;
- ; File: Finder.a
- ;
- ; Contains: Finder flags and container types.
- ;
- ; Version: Technology: System 7.5
- ; Package: Universal Interfaces 2.1ß1 in “MPW Prerelease” on ETO #17
- ;
- ; Copyright: © 1984-1995 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- ; stack. Include the file and version information (from above)
- ; in the problem description and send to:
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__FINDER__') = 'UNDEFINED' THEN
- __FINDER__ SET 1
-
-
- ; Make only the following consts avaiable to resource files that include this file
- kCustomIconResource EQU -16455 ; Custom icon family resource ID
- kContainerFolderAliasType EQU 'fdrp' ; type for folder aliases
- kContainerTrashAliasType EQU 'trsh' ; type for trash folder aliases
- kContainerHardDiskAliasType EQU 'hdsk' ; type for hard disk aliases
- kContainerFloppyAliasType EQU 'flpy' ; type for floppy aliases
- kContainerServerAliasType EQU 'srvr' ; type for server aliases
- kApplicationAliasType EQU 'adrp' ; type for application aliases
- kContainerAliasType EQU 'drop' ; type for all other containers
- ; types for Special folder aliases
- kSystemFolderAliasType EQU 'fasy'
- kAppleMenuFolderAliasType EQU 'faam'
- kStartupFolderAliasType EQU 'fast'
- kPrintMonitorDocsFolderAliasType EQU 'fapn'
- kPreferencesFolderAliasType EQU 'fapf'
- kControlPanelFolderAliasType EQU 'fact'
- kExtensionFolderAliasType EQU 'faex'
- ; types for AppleShare folder aliases
- kExportedFolderAliasType EQU 'faet'
- kDropFolderAliasType EQU 'fadr'
- kSharedFolderAliasType EQU 'fash'
- kMountedFolderAliasType EQU 'famn'
-
- ; Finder Flags
- kIsOnDesk EQU $1
- kColor EQU $E
- kIsShared EQU $40
- kHasBeenInited EQU $100
- kHasCustomIcon EQU $400
- kIsStationery EQU $800
- kIsStationary EQU $800
- kNameLocked EQU $1000
- kHasBundle EQU $2000
- kIsInvisible EQU $4000
- kIsAlias EQU $8000
-
- ENDIF ; __FINDER__
-